5da0de5f26bfe5a91257a8193d00da7c00f48966,ui/src/org/pentaho/di/ui/trans/steps/jobexecutor/JobExecutorDialog.java,JobExecutorDialog,addParametersTab,#,844
Before Change
//
wInheritAll = new Button( wParametersComposite, SWT.CHECK );
wInheritAll.setText( BaseMessages.getString( PKG, "JobExecutorDialog.Parameters.InheritAll" ) );
props.setLook( wInheritAll );
FormData fdInheritAll = new FormData();
fdInheritAll.bottom = new FormAttachment( 100, 0 );
fdInheritAll.left = new FormAttachment( 0, 0 );
After Change
//
wInheritAll = new Button( wParametersComposite, SWT.CHECK );
wInheritAll.setText( BaseMessages.getString( PKG, "JobExecutorDialog.Parameters.InheritAll" ) );
props.setLook( wInheritAll );
FormData fdInheritAll = new FormData();
fdInheritAll.left = new FormAttachment( 0, 0 );
fdInheritAll.top = new FormAttachment( wJobExecutorParameters, 15 );